home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 116 / MacAddict 116 (Mac Power Pack)(theDISC)(April 2006).iso / Software / Graphics & Multimedia / MacCaptureWEB.dmg / Install MacCapture.app / Contents / Resources / Installer Items / MacCapture / Plugins / Invert.plug < prev    next >
Text File  |  2002-10-15  |  192b  |  10 lines

  1. Invert
  2. dim x,y as integer, c as color, t as integer
  3. for x=0 to graphic.width
  4. for y=0 to graphic.height
  5. c=graphic.pixel(x,y)
  6. graphic.pixel(x,y)=RGB(255-c.red,255-c.green,255-c.blue)
  7. next
  8. next
  9.  
  10.